πŸ•ΈοΈ Ada Research Browser

README.md
← Back

Applications

Layer 3 of the SRE platform β€” developer-facing application deployment via GitOps.

Structure

apps/
β”œβ”€β”€ templates/        # Standardized Helm chart templates
β”‚   β”œβ”€β”€ web-app/      # For HTTP-facing services (Deployment + Service + VirtualService)
β”‚   β”œβ”€β”€ api-service/  # For internal APIs (adds Istio AuthorizationPolicy)
β”‚   └── worker/       # For background processors (no ingress, CronJob support)
└── tenants/          # Per-team deployment configurations

How Developers Deploy

  1. Pick a template from apps/templates/ that matches your workload type
  2. Create a directory under apps/tenants/<team>/
  3. Add a values.yaml referencing your image from Harbor
  4. Commit and push β€” Flux auto-deploys

See Helm chart conventions for chart standards.